home *** CD-ROM | disk | FTP | other *** search
/ Gamers Delight 2 / Gamers Delight 2.iso / Aminet / game / board / Spades.lha / Spades / Source / Include.h < prev    next >
C/C++ Source or Header  |  1992-04-02  |  1KB  |  49 lines

  1. /*
  2.    FILE: Include.h
  3.    PURPOSE: Bring in all the include files needed for Spades
  4.    AUTHOR: Gregory M. Stelmack
  5. */
  6.  
  7. #include <exec/types.h>
  8. #include <exec/memory.h>
  9. #include <intuition/intuition.h>
  10. #include <exec/libraries.h>
  11. #include <graphics/gfxmacros.h>
  12. #include <dos/dos.h>
  13. #include <libraries/gadtools.h>
  14. #include <proto/dos.h>
  15. #include <proto/exec.h>
  16. #include <proto/graphics.h>
  17. #include <proto/intuition.h>
  18. #include <proto/gadtools.h>
  19. #include <stdlib.h>
  20. #include <math.h>
  21. #include <time.h>
  22. #include <string.h>
  23. #include "Spades.proto"
  24.  
  25. /************** Program Constants **************/
  26. #define MNONE     0  /* No Mouse Button Pressed    */
  27. #define MLEFT     1  /* Left Mouse Button Pressed  */
  28. #define MRIGHT    2  /* Right Mouse Button Pressed */
  29.  
  30. #define DIAMONDS  0  /* Suit Definitions */
  31. #define CLUBS     1
  32. #define HEARTS    2
  33. #define SPADES    3
  34.  
  35. #define CARDMEMSIZE  52*126*2*3  /* Memory needed for card data */
  36.  
  37. #define RP       Wdw->RPort   /* Raster Port for Graphics Routines */
  38. #define PENS         8        /* Number of Pens                    */
  39. #define DEPTH        3        /* Number of BitPlanes               */
  40.  
  41. #define BLUP 0
  42. #define BLKP 1
  43. #define REDP 2
  44. #define GRNP 3
  45. #define WHTP 4
  46. #define YELP 5
  47. #define PURP 6
  48. #define CYNP 7
  49.